Compare256 function pointer#273
Draft
folkertdev wants to merge 2 commits into
Draft
Conversation
folkertdev
marked this pull request as draft
December 24, 2024 17:52
Member
Author
|
for level 1 |
Contributor
|
This shows an improvement on x86_64 Intel as well (compiled without |
folkertdev
force-pushed
the
compare256-function-pointer
branch
from
January 20, 2025 09:38
4e432fd to
c2ce875
Compare
Codecov Report✅ All modified and coverable lines are covered by tests.
... and 2 files with indirect coverage changes 🚀 New features to boost your workflow:
|
when e.g. the avx2 target feature is not enabled at compile time, but the feature is available at runtime, this approach reduces branching. We still dispatch statically if the target feature is already enabled at compile time
folkertdev
force-pushed
the
compare256-function-pointer
branch
from
January 20, 2025 13:32
c2ce875 to
4c71540
Compare
folkertdev
force-pushed
the
main
branch
2 times, most recently
from
February 6, 2025 11:06
72c2c57 to
af07d45
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
when e.g. the avx2 target feature is not enabled at compile time, but the feature is available at runtime, this approach reduces branching. We still dispatch statically if the target feature is already enabled at compile time